home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / phpMyAdmin / css / phpmyadmin.css.php next >
PHP Script  |  2005-03-06  |  4KB  |  168 lines

  1. <?php
  2. /* $Id: phpmyadmin.css.php,v 2.34 2005/03/06 23:23:46 nijel Exp $ */
  3. // vim: expandtab sw=4 ts=4 sts=4:
  4.  
  5. chdir('..');
  6. $is_minimum_common = TRUE;
  7. require_once('./libraries/grab_globals.lib.php');
  8. require_once('./libraries/common.lib.php');
  9. require_once('./libraries/sqlparser.lib.php');
  10.  
  11. // Gets the default font sizes
  12. // garvin: TODO: Should be optimized to not include the whole common.lib.php bunch
  13. // but only functions used to determine browser heritage.
  14. PMA_setFontSizes();
  15.  
  16. $ctype = 'css';
  17. require_once('./libraries/header_http.inc.php');
  18.  
  19. if (!isset($js_frame)) {
  20.     $js_frame = 'left';
  21. }
  22.  
  23. if ($js_frame == 'left') {
  24. /************************************************************************************
  25.  * LEFT FRAME
  26.  ************************************************************************************/
  27.     // 2004-05-30: Michael Keck (mail@michaelkeck.de)
  28.     //             Check, if theme_left.css.php exists and include
  29.     $tmp_file = $GLOBALS['cfg']['ThemePath'] . '/' . $theme . '/css/theme_left.css.php';
  30.     if (@file_exists($tmp_file)) {
  31.         include($tmp_file);
  32.     } // end of include theme_left.css.php
  33. } elseif ($js_frame == 'print') {
  34. /************************************************************************************
  35.  * PRINT VIEW
  36.  ************************************************************************************/
  37.     // 2004-05-30: Michael Keck (mail@michaelkeck.de)
  38.     //             Check, if theme_print.css.php exists and include
  39.     $tmp_file = $GLOBALS['cfg']['ThemePath'] . '/' . $theme . '/css/theme_print.css.php';
  40.     if (@file_exists($tmp_file)) {
  41.         include($tmp_file);
  42.     } // end of include theme_print.css.php
  43.     ?>
  44. table#serverinfo,td.serverinfo,table.noborder,table.noborder td {
  45.     border: none;
  46. }
  47.     <?php
  48. } else {
  49. /************************************************************************************
  50.  * RIGHT FRAME
  51.  ************************************************************************************/
  52.     // 2004-05-30: Michael Keck (mail@michaelkeck.de)
  53.     //             Check, if theme_right.css.php exists and include
  54.     $tmp_file = $GLOBALS['cfg']['ThemePath'] . '/' . $theme . '/css/theme_right.css.php';
  55.     if (@file_exists($tmp_file)) {
  56.         include($tmp_file);
  57.     } // end of include theme_right.css.php
  58.     echo PMA_SQP_buildCssData();
  59. }
  60.  
  61. ?>
  62.  
  63. /* Calendar */
  64. table.calendar {
  65.     width: 100%;
  66. }
  67.  
  68. table.calendar td {
  69.     text-align: center;
  70. }
  71.  
  72. table.calendar td a {
  73.     display: block;
  74. }
  75.  
  76. table.calendar td a:hover {
  77.     background-color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
  78. }
  79.  
  80. table.calendar th {
  81.     background-color: <?php echo $GLOBALS['cfg']['ThBgcolor']; ?>;
  82. }
  83.  
  84. table.calendar td.selected {
  85.     background-color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
  86. }
  87.  
  88. img.calendar {
  89.     border: none;
  90. }
  91.  
  92. form.clock {
  93.     text-align: center;
  94. }
  95.  
  96. .nowrap {
  97.     white-space: nowrap;
  98. }
  99.  
  100. div.nowrap {
  101.     margin: 0px;
  102.     padding: 0px;
  103. }
  104.  
  105. li {
  106.     padding-bottom: 1em;
  107. }
  108.  
  109. li form {
  110.     display: inline;
  111. }
  112.  
  113. ul.main {
  114.     margin: 0px;
  115.     padding-left:2em;
  116.     padding-right:2em;
  117. }
  118.  
  119. /* no longer needed
  120. ul.main li {
  121.     list-style-image: url(../images/dot_violet.png);
  122.     padding-bottom: 0.1em;
  123. }
  124. */
  125.  
  126. button {
  127.     /* buttons in some browsers (eg. Konqueror) are block elements, this breaks design */
  128.     display: inline;
  129. }
  130.  
  131. /* Tabs */
  132.  
  133. /* For both light and non light */
  134. .tab {
  135.     white-space: nowrap;
  136.     font-weight: bolder;
  137. }
  138.  
  139. /* For non light */
  140. td.tab {
  141.     width: 64px;
  142.     text-align: center;
  143.     background-color: #dfdfdf;
  144. }
  145.  
  146. td.tab a {
  147.     display: block;
  148. }
  149.  
  150. /* For light */
  151. div.tab { }
  152.  
  153. /* Highlight active tab */
  154. td.activetab {
  155.     background-color: silver;
  156. }
  157.  
  158. /* Textarea */
  159.  
  160. textarea {
  161.     overflow: auto;
  162. }
  163.  
  164. .nospace {
  165.     margin: 0px;
  166.     padding: 0px;
  167. }
  168.